home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / chrdemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  97 b   |  8 lines

  1. program ChrDemo;
  2. var
  3.   x: Integer;
  4. begin
  5.   for x := 32 to 122 do
  6.     Write (Chr (x))
  7. end.
  8.